os/exec.Cmd.goroutine (field)

9 uses

	os/exec (current package)
		exec.go#L319: 	goroutine []func() error
		exec.go#L546: 	c.goroutine = append(c.goroutine, func() error {
		exec.go#L595: 	c.goroutine = append(c.goroutine, func() error {
		exec.go#L737: 	if len(c.goroutine) > 0 {
		exec.go#L746: 		statusc <- goroutineStatus{running: len(c.goroutine)}
		exec.go#L747: 		for _, fn := range c.goroutine {
		exec.go#L763: 		c.goroutine = nil // Allow the goroutines' closures to be GC'd when they complete.